How to Convert any string into lower case in SQL Server?
683
18-Nov-2021
Ashutosh Kumar Verma
18-Nov-2021SQL LOWER():
SQL LOWER() function in used to convert any given string in lower case.
Example:
SELECT LOWER('MindStick.Com');Output:
mindstick.com
SELECT LOWER('MINDSTICK.COM');Output:
mindstick.com